草庐IT

php - Ajax LARAVEL 419 POST 错误

全部标签

javascript - 全局搜索时 JavaScript 中的 RegExp 错误

这个问题在这里已经有了答案:WhydoesaRegExpwithglobalflaggivewrongresults?(7个答案)关闭5年前。PossibleDuplicate:Javascriptregexreturningtrue..thenfalse..thentrue..etc首先,为我糟糕的英语道歉。我正在尝试测试字符串以匹配模式,所以我这样写:varstr='test';varpattern=newRegExp('te','gi');//yes,Iknowthatsimple'i'willbegoodforthis但我有这个意想不到的结果:>>>pattern.test(s

javascript - 使用 jQuery 的 Location header 在 POST 之后重定向

我想在jQuery1.7中使用Locationheader重定向到目标。我的代码是这样的$('#creationLink').click(function(){$.ajax({type:'POST',url:'/',success:function(data,textStatus,xhr){window.location=xhr.getResponseHeader("Location");}})});...但它不起作用。xhr.getResponseHeader("Location")为空。HTTPheader:POST/HTTP/1.1Host:localhost:9000X-Req

javascript - 显示微调器,直到 iframe 加载了 http post 响应

我有两个网站A.com和B.com。我必须将B.com嵌入到A.com的iframe中。我无法在B.com进行任何更改B.com仅适用于带有一些发布数据的发布请求。我的工作如下//Createiframevar$ifr=$('');//createformvar$form=$('');//AppendhiddenfieldtoformtopasspostData$form.append($('').val('data'));//Appendformtotheiframeandthenappendiframetothediv$('#frameDiv').append($ifr.appen

javascript - 无法使用带有解析存在 View 模型的 ko.mapping.fromJSON 解析绑定(bind) js 错误

我想以JSON格式将View模型保存在隐藏字段中。一切正常。但是当我尝试获取它时-我得到错误:UncaughtError:Unabletoparsebindings.Message:ReferenceError:selectAllisnotdefined;Bindingsvalue:checked:AllCheck,click:selectAllJsFiddlerView模型functionAppViewModel(){//Weekthis.AllCheck=ko.observable(false);this.DaysOfWeekResult=ko.observableArray();

javascript - getElementsByClassName 产生错误 "undefined"

这个问题在这里已经有了答案:WhatdoquerySelectorAllandgetElementsBy*methodsreturn?(12个答案)关闭8年前。我有几个textboxes类output。我希望能够将它们的值作为纯HTML列表打印在div中,带有IDcombined。现在,我有以下代码:functiondoCombine(){document.getElementById('combined').innerHTML=document.getElementsByClassName('output').value+",";}但是,当我运行该函数时,我收到错误消息undefin

javascript - Facebook 错误 100 : You cannot specify a scheduled publish time on a published post

我只是不得不这样做。绝对每个问题我都查找了有关此问题的问题,但他们的答案都没有帮助我解决问题。我正在尝试在我的Facebook页面上发帖。问题是:错误:“(#100)您不能在已发布的帖子上指定预定的发布时间”代码:FB.api("/100177680105780/feed","POST",{"message":"Thisisatestmessage","scheduled_publish_time":Math.round(newDate().getTime()/1000)+120},function(response){console.log(response);if(response

javascript - 如何使用 CSRF 测试 express form post?

我正在尝试为我的服务器端表单验证编写测试,但我不断收到禁止错误。看来这需要一个两步过程。第一步,从表单中获取CSRF值。第2步,使用CSRF值发布到表单处理程序。但是,无论我如何尝试发帖,我都会遇到禁止的错误。--完整测试:https://github.com/socketwiz/swblog/blob/master/test/contact.js#L57-L100我试过这样更改以下行:https://github.com/socketwiz/swblog/blob/master/test/contact.js#L85.send({name:'foo','X-CSRF-Token':t

javascript - 如何在不再次发送 POST 信息的情况下使用 javascript 重新加载页面

我有一个页面,我通过formmethod="post"将信息发布到该页面。我想用JavaScript重新加载它,但是location.reload(true)和location.reload()让浏览器询问我是否要再次发送POST数据。我想让JavaScript使用GET而不是POST重新加载页面以跳过POST数据。我怎样才能做到这一点? 最佳答案 window.location.href=window.location.href尝试 关于javascript-如何在不再次发送POST信

javascript - 在浏览器 (javascript) 中将 Cognito 凭据与 AWS 结合使用时,不断出现 "missing credentials"错误

我正在尝试使用AWS的JavaScriptSDK从Web浏览器将文件上传到我的S3存储桶。我的代码如下所示:AWS.config.credentials=newAWS.CognitoIdentityCredentials({AccountId:'dfhgdh',IdentityPoolId:'fdagsd',RoleArn:'fdafds'});varbucket=newAWS.S3({params:{Bucket:'test-bucket'}});varpdfUpload=document.getElementById('pdf-uploads').files[0];varparam

javascript - CucumberJS - 错误 : Step timed out after 5000 milliseconds at Timer. listOnTimeout (timers.js:92:15)

我是cucumberjs的新手,只是第一次尝试运行一个功能。我已经构建了cucumber-jsgithubpage上的功能.尝试运行时出现此错误:Benjamins-MBP:FeaturesBen$cucumber.jsexample.featureFeature:ExamplefeatureAsauserofcucumber.jsIwanttohavedocumentationoncucumberSothatIcanconcentrateonbuildingawesomeapplicationsScenario:Readingdocumentation#example.feature